/*初始化样式*/
html {
    margin: 0;
    padding: 0;
    border: 0;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
p,
blockquote,
pre,
a,
address,
code,
b,
em,
img,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
footer,
header,
hgroup,
nav,
section {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    background: #fff;
    color: #666;
    position: relative;
    font: 12px/1.5 Microsoft YaHei, arial, 宋体, sans-serif;
    vertical-align: baseline;
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    outline: none;
}

a:link {
    color: #666;
}

a:visited {
    color: #666;
}

a:hover,
a:active,
a:focus {
    color: #009b4c;
    text-decoration: none;
    outline: none;
}

input {
    padding: 0;
    margin: 0;
    font-family: 'Microsoft YaHei';
}

img {
    border: none;
    background: none;
    vertical-align: middle;
}

ul,
ol,
li {
    list-style-type: none;
}

select,
input,
img,
select {
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

table,
th,
td {
    vertical-align: middle
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}

.clearfix {
    zoom: 1
}

.clearboth {
    height: 0px;
    line-height: 0px;
    overflow: hidden;
    clear: both;
    font-size: 0px;
}

h1,
h2,
h3,
h4 {
    font-size: 12px;
    font-weight: bold;
}

hr {
    border: 0;
    border-top: 1px solid #ccc;
    height: 0;
}

dt {
    font-weight: normal;
}

/*----- Common css ------*/
.fl {
    float: left;
}

.fr {
    float: right;
}

.di {
    _display: inline;
}

.fwn {
    font-weight: normal;
}

.dib {
    *display: inline;
    _zoom: 1;
    _display: inline;
    _font-size: 0px;
}


.com-img {
    display: inline;
    overflow: hidden;
    margin: 0 auto;
    display: table;
}

.com-img img {
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
}

.com-img:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
}


.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.flexd {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.wh1700 {
    max-width: 1730px;
    padding: 0 15px;
    margin: 0 auto;
}

.wh1468 {
    max-width: 1498px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}

.wh1585 {
    max-width: 1615px;
    padding: 0 15px;
    margin: 0 auto;
}


.wh1698 {
    max-width: 1728px;
    padding: 0 15px;
    margin: 0 auto;
}

/*导航栏样式*/


.nav li {
    text-align: center;
    float: left;
    position: relative;
    z-index: 999;
    flex: 1;
}

.nav li a {
    display: block;
    line-height: 80px;
    color: #515151;
    height: 80px;
    padding: 0;
    font-size: 16px;
    padding: 0 1.5vw;
    position: relative;
}

.nav>li>a::after {
    content: '';
    position: absolute;
    width: 85px;
    left: 50%;
    bottom: 0;
    margin-left: -42.5px;
    height: 1px;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scaleX(0);
    background: #014099;
    transform-origin: right center;
}

.nav>li:hover>a::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.nav li a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #e1561600;
    color: #014099;
}

.nav>li>a:focus,
.nav>li>a:hover {
    text-decoration: none;
    background-color: #e1561600;
    color: #014099;
}



.nav .sec {
    width: 232px;
    height: auto;
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 80px;
    background: #fff;
    border-top: 1px solid #e1e1e1;
    transition: background 0.5s cubic-bezier(0.445, 0.145, 0.385, 1);
    padding-bottom: 13px;
    border-bottom: 4px solid #e1e1e1;
}

.nav .sec a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #333;
    height: 48px;
    line-height: 48px;
    font-size: 16px;
    padding: 13px 15px 13px 35px;
    position: relative;
}

.nav .sec a div.img {
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav .sec a div.img img {
    max-width: 100%;
    max-height: 100%;
}

.nav .sec a span {
    font-size: 14px;
    line-height: 24px;
    transition: color 0.5s cubic-bezier(0.445, 0.145, 0.385, 1);
    display: inline-block;
    vertical-align: top;
    margin-left: 15px;
}

.nav .sec a::after {
    content: '';
    display: block;
    position: absolute;
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
    background: #014099;
    transition: transform 0.5s cubic-bezier(0.445, 0.145, 0.385, 1);
    transform: scaleY(0);
    transform-origin: bottom center;
}


.nav .sec a:hover::after {
    transform-origin: top center;
    transform: scaleY(1);
}




.nav .sec a:hover {
    background: initial;
    text-decoration: none;
    color: #014099;
}


.nav .pro .sec2 {
    width: 100vw;
    height: 221px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    display: none;
}

.nav .pro .sec2 .flex {
    height: 100%;

}

.nav .pro {
    position: static;
}

.nav .sec2 a {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    position: relative;
}

.nav .sec2 a div.img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    line-height: 90px;
    position: relative;
}

.nav .sec2 a div.img img {
    max-width: 100%;
    vertical-align: top;
    /* height: 100%;
    width: 100%; */
    /* width: auto; */
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.nav .sec2 a div.img img:last-of-type {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
}
.nav .sec2 a:hover div.img img {
    opacity: 0;
}
.nav .sec2 a:hover div.img img:last-of-type {
    opacity: 1;
}



.nav .sec2 a span {
    font-size: 14px;
    line-height: 32px;
    letter-spacing: 1.4px;
    color: #000000;
    margin-top: 18px;
}

.nav .sec2 a::after {
    content: '';
    position: absolute;
    left: 85px;
    right: 85px;
    bottom: 0;
    height: 1px;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scaleX(0);
    background: #014099;
    transform-origin: right center;
}

.nav .sec2 a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.nav .sec2 a:hover span {
    color: #014099;
}

.wh1730 {
    max-width: 1760px;
    padding: 0 15px;
    margin: 0 auto;
}

.top {
    width: 100%;
    background: #fff;
    height: 80px;
    box-shadow: 0px 3px 18px 0px rgba(6, 0, 0, 0.05);
    align-items: flex-start;
    position: fixed;
    z-index: 999;
    top: 0;
}

.top .logo a {
    display: block;
    line-height: 80px;
    height: 80px;
}

.top .logo a img {
    display: inline-block;
    vertical-align: middle
}


.top2 {
    justify-content: flex-end;
    /* align-items: flex-start; */
}




.x-header-right {
    text-align: center;
    position: relative;
    margin-left: 1.6vw;
}


.x-header-right .ss_btn {
    width: 17px;
    height: 17px;
    background: url(../images/sss.png) no-repeat right center;
    cursor: pointer;
}

@media (max-width:1024px) {
    .x-header-right {
        display: none;
    }
}

.x-header-right #formsearch {
    position: absolute;
    top: 48px;
    right: 0;
    z-index: 9999;
    width: 250px;
    display: none;
    background: #f2f2f2;
}

.x-header-right #formsearch #s_btn {
    float: left;
    outline: none;
    border: none;
    width: 35px;
    height: 30px;
    font-size: 0;
    background-image: url(../images/icon_spirit.png);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0 -210px;
}

.x-header-right #formsearch #keyword {
    float: left;
    background: none;
    outline: none;
    border: none;
    width: calc(100% - 35px);
    width: 215px;
    color: rgba(0, 0, 0, 0.8);
    margin-top: 0px;
    height: 30px;
    padding-left: 10px;
    font-size: 14px;
}


@media(max-width: 992px) {
    body {
        padding-top: 60px;
    }
}





.p1a {
    height: 11.65rem;
    background: #fff;
}


.p1a a {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    position: relative;
}

.p1a a div.img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    line-height: 90px;
}


.p1a a div.img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    line-height: 90px;
    position: relative;
}

.p1a a div.img img {
    max-width: 100%;
    vertical-align: top;
    /* height: 100%;
    width: 100%; */
    /* width: auto; */
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.p1a a div.img img:last-of-type {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
}
.p1a a:hover div.img img {
    opacity: 0;
}
.p1a a:hover div.img img:last-of-type {
    opacity: 1;
}






.p1a a span {
    font-size: 14px;
    line-height: 32px;
    letter-spacing: 1.4px;
    color: #000000;
    margin-top: 18px;
}

.p1a a::after {
    content: '';
    position: absolute;
    left: 85px;
    right: 85px;
    bottom: 0;
    height: 1px;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scaleX(0);
    background: #014099;
    transform-origin: right center;
}

.p1a a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.p1a a:hover span {
    color: #014099;
}

.p1a a.active::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.p1a a.active span {
    color: #014099;
}

.p1-tab {
    position: relative;
}

.p1-tab .img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    right: 0;
}

.p1-tab .img img {
    width: 100%;
    /*transition: all ease .3s;*/
}

.p1-tab .img {
    opacity: 0;
    visibility: hidden;
    transition: all .6s ease;
    overflow: hidden;
}

.p1-tab .img:hover img {
   /* transform: scale(1.1);*/
}

.p1-tab .img.active {
    position: static;
    opacity: 1;
    visibility: visible;
}

@media(max-width: 768px) {
    .p1a a::after {
        width: 60px;
        left: initial;
        right: initial;
    }
}

@media(max-width: 767px) {

    .p1a {
        height: auto;
        padding: 2rem 0;
    }

    .p1a a {
        flex: auto;
        width: 33%;
        margin-bottom: 4%;
        padding-bottom: 4px;
    }

    .p1a a div.img {
        height: 50px;
        line-height: 50px;
    }

    .p1a a div.img img {
        max-width: 40%;
    }

    .p1a a:nth-child(2) div.img img,
    .p1a a:nth-child(4) div.img img {
        max-width: 62%;
    }

    .p1a a span {
        margin-top: 8px;
    }
}

@media(max-width:425px){
    .p1a a span{
        font-size: 12px;
        overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    }
}




.p2 {
    background: url(../images/p2b.jpg) no-repeat bottom center;
    background-size: 100% auto;
    padding: 5rem 0 3.8rem;
}

.p2-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3.95rem;
}

.p2-title h3 {
    font-size: 1.75rem;
    color: #d1d1d1;
    margin-bottom: .5rem;
}

.p2-title h3 span {
    color: #515151;
    margin-left: 1rem;
}

.p2-title p {
    font-size: 1rem;
    color: #515151;
    font-weight: 700;
    position: relative;
}

.p2-title p::after {
    content: "";
    width: 2.7rem;
    height: 1px;
    background-color: #515151;
    position: absolute;
    right: -3.4rem;
    top: 50%;
    transform: translateY(-50%);
}

.p2-title p::before {
    content: "";
    width: 2.7rem;
    height: 1px;
    background-color: #515151;
    position: absolute;
    left: -3.4rem;
    top: 50%;
    transform: translateY(-50%);
}




.p2-swiper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

.p2-swiper .swiper-container {}

.p2-swiper .swiper-slide {
    align-self: flex-end;
    position: relative;
    z-index: 1;

}

.p2-swiper .swiper-slide-active {}

.p2-swiper .swiper-slide a div.img {
    position: relative;
}

.p2-swiper .swiper-slide a div.img img {
    width: 25.65rem;
    height: 16.3rem;
    /* box-shadow: 0px 8px 20px 2px  rgba(0, 0, 0, .1); */
    /* box-shadow:0 15px 35px rgba(0,0,0,0.1),0 3px 10px rgba(0,0,0,0.07); */
}

.p2-swiper .swiper-slide a div.img::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    opacity: 1;
    transition: all ease .3s;
}

.p2-swiper .swiper-slide img {
    display: block;
    width: 100%;
}

.p2-swiper .swiper-slide-next {
    z-index: 22;
    transform: translateX(-13%);

}

.p2-swiper .swiper-slide-next a div.img::after {
    opacity: 0;
}

.p2-swiper .swiper-slide-next a div.img img {
    margin-top: 0;
    width: 32.05rem;
    height: 20.3rem;
}


.p2-swiper .swiper-slide h3 {
    font-size: 18px;
    letter-spacing: 1.8px;
    color: #000000;
    /* position: absolute; */
    text-align: center;
    margin-top: 2.9rem;
}

.p2-swiper .swiper-slide-next h3 {
    transform: translateX(11%);
}


.p2 .more a {
    display: block;
    width: 161px;
    line-height: 37px;
    border-radius: 10px;
    border: solid 1px #acacac;
    font-size: 16px;
    letter-spacing: 1.8px;
    color: #515151;
    text-align: center;
    margin: 4rem auto 0;
    transition: all ease .3s;
}

.p2 .more:hover a {
    border: solid 1px #014099;
    background-color: #014099;
    color: #fff;
}

@media(max-width: 768px) {
    .p2-swiper .swiper-slide a div.img img {
        width: 100%;
        max-height: 100%;
        height: auto;
    }

    .p2-swiper .swiper-slide-next a div.img img {
        width: 100%;
        height: auto;
        max-height: 100%;
    }

    .p2-swiper .swiper-slide-next {
        transform: translateX(0);
    }

    .p2-swiper .swiper-slide a div.img::after {
        opacity: 0;
    }

    .p2 {
        background-size: 100% 50%;
    }
}

@media(max-width: 767px) {
    .p2-title h3 {
        font-size: 2rem;
    }

    .p2-title p {
        font-size: 1.7rem;
    }

    .p2 .more {
        margin: 2rem auto 0;
    }
}


.p3 {
    background: url(../images/newsb.jpg) no-repeat center center;
    background-size: cover;
    padding: 4.85rem 0 2.65rem;
}

.p3-title p::after {
    width: 3rem;
    right: -3.9rem;
}

.p3-title p::before {
    width: 3rem;
    left: -3.9rem;

}

.p3a li {
    width: 31.41%;
}

.p3a li a {
    display: block;
    width: 100%;
}

.p3a li a div.img {
    overflow: hidden;
}

.p3a li a div.img img {
    width: 100%;
    display: block;
    /*transition: all ease .6s;*/
}

.p3a li:hover a div.img img {
    /*transform: scale(1.1);*/
}

.p3a li a .cont {
    color: #fff;
    background-color: #b3b3b3;
    padding: 1rem 1.85rem 0.8rem 1.8rem;
    transition: all ease .3s;
}

.p3a li a .cont .time {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p3a li a .cont .time h3 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 0.6rem;
    line-height: 1.5;
    width: 71%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.p3a li a .cont .time span {
    font-size: 12px;
}

.p3a li a .cont p {
    font-size: 14px;
    line-height: 1.71;
}

.p3a li:hover a .cont {
    background-color: #014099;
}

.p3 .more a {
    display: block;
    width: 161px;
    line-height: 37px;
    border-radius: 10px;
    border: solid 1px #acacac;
    font-size: 16px;
    letter-spacing: 1.8px;
    color: #515151;
    text-align: center;
    margin: 2.45rem auto 0;
    transition: all ease .3s;
}

.p3 .more:hover a {
    border: solid 1px #014099;
    background-color: #014099;
    color: #fff;
}



@media(max-width: 1024px) {
    .p3a li a .cont .time span {
        white-space: nowrap;
    }

    .p3a li a .cont .time h3 {
        font-size: 16px;
    }
}


@media(max-width: 768px) {
    .p3a li {
        width: 100%;
        margin-bottom: 4%;
    }
}



.p4 {
    height: 17.8rem;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.p4 .img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    right: 0;
    width: 100%;
    height: 100%;
}

.p4 .img img {
    opacity: 0;
    height: 100%;
    width: 100%;
    transition: all ease .5s;
}

.p4 .cont {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 99;
    position: absolute;
    left: 0;
    right: 0;
    border-top: 2px solid #333;

}

.p4 a.inquiry {
    width: 56.67%;
    font-size: 1.5rem;
    font-weight: normal;
    color: #000;
    display: flex;
    justify-content: flex-end;
    padding-right: 4.85rem;
    transition: all ease .3s;
    text-transform: uppercase;
}

.p4 a.liao {
    flex: 1;
    font-size: 0.9rem;
    color: #000;
    padding-left: 2.2rem;
    transition: all ease .3s;
}


.p4:hover .img img {
    opacity: 1;
}

.p4:hover a.inquiry {
    padding-right: 2.85rem;
    color: #fff;
}

.p4:hover a.liao {
    padding-left: 4.2rem;
    color: #fff;
}

@media(max-width: 1600px) {
    .p4 {
        height: 14.8rem;
    }
}

@media(max-width: 1024px) {
    .p4 a.liao {
        font-size: 14px;
    }
}



@media(max-width: 767px) {
    .p4 a.inquiry {
        width: 100%;
        font-size: 20px;
        padding: 0 10px;
        justify-content: center;
        text-align: center;
    }

    .p4 .cont {
        flex-wrap: wrap;
    }

    .p4 a.liao {
        flex: auto;
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 0 10px;
    }
}




.p5 {
    background-color: #454545;
    padding-top: 3.6rem;
    padding-bottom: 3rem;
}

.p5a1 {
    width: 77.59%;
    display: flex;
    padding-bottom: 1rem;
    border-bottom: 1px solid #fff;
    position: relative;
}

.p5a1::after {
    content: "";
    width: 19px;
    height: 19px;
    background: url(../images/jian.png) no-repeat center center;
    position: absolute;
    right: 0;
    top: 6%;
    transition: all ease .3s;
}

.p5a1.on::after {
    transform: rotate(180deg);
}



.p5a1 li {
    flex: 1;
    font-size: 16px;
    color: rgba(255, 255, 255, .7);
}

.p5b-cont {
    /*display: none;*/

}

.p5b {
    margin-top: 1rem;

}

.p5b1 {
    width: 77.59%;
    display: flex;
}

.p5b1 li {
    flex: 1;
}

.p5b1 li a {
    display: block;
    font-size: 13.97px;
    line-height: 2.46;
    letter-spacing: 1.4px;
    color: rgba(255, 255, 255, .5);
    transition: all ease .3s;
}

.p5b2 {
    width: 18.53%;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.p5b2 .p5b2a {
    font-size: 16px;
    color: #ffffff;
    line-height: 2.1;
}

.p5b2 .p5b2a strong {
    font-size: 24px;
}

.p5b2b {
    width: 33.2%;
}

.p5b2b p {
    /* display: inline-block; */
}

.p5b2b img {
    margin: 1rem 0 0.5rem;
}

.p5b2b h3 {
    font-size: 0.7rem;
    font-weight: normal;
    color: #ffffff;
    text-align: center;
}

.p5b1 li a:hover {
    color: #fff;
}

.p6 {
    font-size: 13.97px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .5);
}

.p6 a {
    color: rgba(255, 255, 255, .5);
}

.p6 {
    padding: 12px 0;
    background-color: #a11e2c;
}

.p6a2 {
    justify-content: flex-end;

}

.p6a2 li {
    margin-left: 0.8rem;
}

.x-region{
    display: none;
}

@media(max-width: 1440px) {
    .p5a2 {
        width: 22%;
    }

    .p5a2 img {
        max-width: 100%;
    }

    .p5a1,
    .p5b1 {
        width: 74%;
    }

    .p5b2 {
        width: 22%;
    }

    .p5b2 .p5b2a {
        font-size: 14px;
    }

}

@media(max-width: 1024px) {
    .p5b2b {
        width: 49.2%;
    }
}

.m_nav {
    display: none;
}

@media (max-width: 992px) {
    .m_nav {
        display: block;
    }

    .m_nav li {
        border-bottom: 1px solid #4d4d4d;
    }

    .m_nav ul li dl {
        padding: 12px 0;
    }

    .p5b-cont {
        display: block !important;
    }

    .p5a2 {
        width: 100%;
        margin-top: 30px;
        text-align: center;
    }

    .p5b2 {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .p5b2b {
        width: auto;
        margin: 10px auto;
    }
}

.m_nav li {
    border-bottom: 1px solid #4d4d4d;
}

.m_nav ul li .li_tit {
    line-height: 40px;
    font-size: 16px;
    color: #999999;
    overflow: hidden;
}

.m_nav ul li .li_tit span {
    float: left;
}

.m_nav ul li .li_tit .icon {
    width: 17px;
    height: 17px;
    background: url(../images/footer_icon1.png) no-repeat;
    float: right;
    background-size: cover;
    margin-top: 11px;
}

.m_nav ul li.active .li_tit .icon {
    background: url(../images/footer_icon2.png) no-repeat;
    background-size: cover;
}

.m_nav ul li dl a {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #999999;
}
.p9b{
    display: none;
}


.p9b select {
    /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
    border: solid 1px #000;
    /*很关键：将默认的select选择框样式清除*/
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    /*将背景改为红色*/
    background: red;
    /*加padding防止文字覆盖*/
    padding-right: 14px;
}

/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand {
    display: none;
}

.p9b select {
    background: none;
    outline: none;
    border: none;
    width: 188px;
    height: 34px;
    color: #b3b3b3;
    background: #fff url(../images/yq.png) no-repeat center center;
    padding-left: 19px;
}




/*手机底部*/
@media (max-width:768px) {
    .db {
        display: block !important;
    }
}


.dbb {
    height: 50px;
}

/* 页脚 */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #000;
}

.footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer ul li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    color: #ffffff;
    line-height: 30px;
    padding: 10px 0;
    font-size: 0;
}

.footer ul li.active {
    background: #000;
}

.footer ul li a {
    display: block;
    color: #fff;
}

.footer ul li .iconfont {
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.footer ul li span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #fff;
}


.footer li .icon-home {
    background: url(../images/fa1.png) no-repeat;
    width: 20px;
    height: 20px;
}

.footer li .icon-home2 {
    background: url(../images/fa2.png) no-repeat;
    width: 20px;
    height: 20px;
}

.footer li .icon-phone {
    background: url(../images/fa3.png) no-repeat;
    width: 20px;
    height: 20px;
}

.footer li .icon-contact {
    background: url(../images/fa4.png) no-repeat;
    width: 20px;
    height: 20px;
}

.footer li .icon-phone:before {
    font-size: 0;
}

.footer ul li a {
    border-left: 1px solid #fff;
}

.footer ul li:nth-child(1) a {
    border: none;
}



/*内页左侧样式*/
.page-product-inquiry a {
    color: #fff;
}


/*分页样式1*/
.pageController {
    padding-right: 10px;
    padding-top: 5px;
    color: #505050;
    margin: 0 auto;
    border-top: 1px solid #E2E3E4;
    margin-top: 16px;
    line-height: 24px;
}

.pageController a {
    background-color: #FFF;
    vertical-align: middle;
    border: #efefef 1px solid;
    color: #505050;
    padding: 5px 8px;
    margin-right: 3px;
    margin-left: 3px;
}

.pageController a:hover {
    background-color: #efefef;
    color: #438ece;
    text-decoration: none;
    border: #efefef 1px solid;
}

.pageController .currPage {
    background-color: #efefef;
    color: #ff0000;
    border: #efefef 1px solid;
}

.pageController .t1 {
    float: left;
    margin-right: 5px;
    height: 24px;
    line-height: 22px;
    white-space: nowrap;
}

.pageController .t2 {
    float: right;
    vertical-align: middle;
    line-height: 24px;
}

.pageController .t2 #current {
    padding: 0 5px;
    line-height: 24px;
}

.pageController .t1 span {
    padding-left: 4px;
    padding-right: 4px;
}

.pageController select {
    height: 24px;
    vertical-align: middle;
    text-align: center;
    line-height: 24px;
}

.pageController select option {
    vertical-align: middle;
}



/* 内页开始 案例 */
.nsort {
    max-width: 1700px;
    padding: 0 8.43vw;
    margin: 0 auto 65px;
    background-color: #ffffff;
    box-shadow: 0px 0px 21px 0px rgba(6, 0, 0, 0.09);

}

.nsort1 {
    height: 159px;
    background: #fff;
}


.nsort1 a {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    position: relative;
  
}

.nsort1 a+a {
    background: url(../images/line8.jpg) no-repeat left center;
}

.nsort1 a div.img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: centfer;
    height: 90px;
    line-height: 90px;
    margin-top: 4%;
}

.nsort1 a div.img img {
    max-width: 100%;
}


.nsort1 a div.img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    line-height: 90px;
    position: relative;
}

.nsort1 a div.img img {
    max-width: 100%;
    vertical-align: top;
    /* height: 100%;
    width: 100%; */
    /* width: auto; */
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.nsort1 a div.img img:last-of-type {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
}
.nsort1 a:hover div.img img {
    opacity: 0;
}
.nsort1 a:hover div.img img:last-of-type {
    opacity: 1;
}




.nsort1 a span {
    font-size: 14px;
    line-height: 32px;
    letter-spacing: 1.4px;
    color: #000000;
    /* margin-top: 18px; */
}

.nsort1 a::after {
    content: '';
    position: absolute;
    left: 65px;
    right: 65px;
    bottom: 0;
    height: 1px;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scaleX(0);
    background: #014099;
    transform-origin: right center;
}

.nsort1 a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.nsort1 a:hover span {
    color: #014099;
}

@media(max-width: 768px) {
    .nsort1 a::after {
        width: 60px;
        left: initial;
        right: initial;
    }
}

@media(max-width: 767px) {
.nsort{
    margin: 0 auto 35px;
    padding: 0 2vw;
}
    .nsort1 {
        height: auto;
        padding: 2rem 0;
    }

    .nsort1 a {
        flex: auto;
        width: 33%;
        margin-bottom: 4%;
        padding-bottom: 4px;
    }

    .nsort1 a+a {
        background: initial;
    }

    .nsort1 a div.img {
        height: 50px;
        line-height: 50px;
    }

    .nsort1 a div.img img {
        max-width: 40%;
    }

    .nsort1 a:nth-child(2) div.img img,
    .nsort1 a:nth-child(4) div.img img {
        max-width: 62%;
    }

    .nsort1 a span {
        margin-top: 8px;
    }
}


.case_sort {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.case_tab {
    width: 18.9rem;
    position: absolute;
    left: 11.8rem;
    top: 0;
    bottom: 0;
    background-color: rgba(69, 69, 69, .5);
    z-index: 11;
}

.case_tab .case_tabtitle {
    text-align: center;
    padding: 2rem 0;
    background-color: #000000;
    color: #ffffff;
}

.case_tab .case_tabtitle h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.case_tab .case_tabtitle p {
    font-size: 1.2rem;
}

.case_tab {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.case_tab1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 0.95rem 0 1rem;
}

.case_tab1 li {
    flex: 1;
    border-bottom: 1px solid #fff;
}

.case_tab1 li:first {
    border-bottom: 1px solid #fff;
}

.case_tab1 li a {
    display: flex;
    width: 22.6rem;
    height: 100%;
    padding-left: 1.45rem;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    position: relative;
    transition: all ease .3s;
}

.case_tab1 li a::after {
    content: "";
    width: 31px;
    height: 31px;
    background: url(../images/cmore.png) no-repeat center center;
    background-size: 100% 100%;
    border-radius: 50%;
    position: absolute;
    right: 2.1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all ease .3s;
}

.case_tab1 li a h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.6rem;
}

.case_tab1 li a p {
    font-size: 1rem;
}

.case_con {
    position: relative;
}

.case_con .img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    right: 0;
}

.case_con .img img {
    width: 100%;
}

.case_con .img {
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
}

.case_con .img.active {
    position: static;
    opacity: 1;
    visibility: visible;
}

.case_tab1 li.active a {
    background-color: rgba(69, 69, 69, 1);
}

.case_tab1 li.active a:after {
    opacity: 1;
}

@media(max-width: 1366px) {

    .case_tab .case_tabtitle {
        padding: 1rem 0;
    }
}

@media(max-width: 1024px) {
    .case_tab {
        left: 5.8rem;
    }
}

@media(max-width: 768px) {
    .case_tab {
        position: static;
        width: 100%;
        background-color: rgba(69, 69, 69, .9);
    }

    .case_tab1 {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .case_tab1 li {
        width: 49%;
        flex: auto;
    }

    .case_tab1 li a {
        padding: 0;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }

    .case_tab1 li a::after {
        display: none;
    }
}

@media(max-width: 767px) {
    .case_tab1 li a h3 {
        font-size: 18px;
    }

    .case_tab1 li a p {
        font-size: 14px;
    }

}


.pro-info {
    background-color: #f7fcff;
    width: 100%;
    padding: 1.4rem 6.8rem 1.4rem 3.6rem;
    margin-bottom: 3.25rem;
}

.pro-info .pro-info-img {
    width: 36.12%;
    margin-right: 8.2rem;
    overflow: hidden;
}

.pro-info .pro-info-img img {
    max-width: 100%;
    transition: all ease .6s;
}

.pro-info .pro-info-img:hover img {
    transform: scale(1.1);
}

.pro-info .pro-info-text {
    flex: 1;
}

.pro-info .pro-info-text h5 {
    font-size: 1.2rem;
    font-weight: normal;
    color: #014099;
}

.pro-info .pro-info-text h3 {
    font-size: 2rem;
    color: #014099;
    margin: 0.7rem 0 1rem;
}

.pro-info .pro-info-text p {
    font-size: 14px;
    line-height: 2.1;
    letter-spacing: 1.4px;
    color: rgba(0, 0, 0, .5);
}

.pro-info .pro-info-text a.message {
    display: block;
    width: 114px;
    line-height: 39px;
    border: solid 1px #014099;
    font-size: 14px;
    color: #014099;
    text-align: center;
    margin-top: 3rem;
    transition: all ease .3s;
}
.pro-info .pro-info-text a.message:hover{
 border: solid 1px #014099;   
 background-color: #014099;
 color:#fff;
 
}

.xypg-product-list1 {
    padding: 0 3.7rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.xypg-product-list1 li {
    width: 19.23%;
    margin-right: 7.5%;
    margin-bottom: 2.5rem;
}

.xypg-product-list1 li:nth-child(4n) {
    margin-right: 0;
}

.xypg-product-list1 li a {
    display: block;
}

.xypg-product-list1 li a div.img {
    box-shadow: 0px 1px 19.7px 1.3px rgba(6, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.xypg-product-list1 li a div.img img {
    width: 100%;
    transition: all ease .6s;
}

.xypg-product-list1 li:hover a div.img img {
    transform: scale(1.1);
}

.xypg-product-list1 li a .img-cont {
    position: absolute;
    left: 0;
    right: 0;
    padding: 2rem 1rem 1rem 1.1rem;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    opacity: 0;
    transition: all ease .3s;
    overflow: hidden;
}

.xypg-product-list1 li a .img-cont img {
    max-width: 100%;
    max-height: 100%;
}

.xypg-product-list1 li a .img-cont::after {
    content: "";
    position: absolute;
    right: 0;
    width: 0%;
    height: 100%;
    top: 0;
    background-color: rgba(160, 160, 160, .8);
    transition: all ease .3s;
    z-index: -1;
}


.xypg-product-list1 li a .img-cont::before {
    content: "";
    position: absolute;
    left: 0;
    width: 0%;
    top: 0;
    height: 100%;
    background-color: rgba(160, 160, 160, .8);
    transition: all ease .3s;
    z-index: -1;
}

.xypg-product-list1 li a:hover .img-cont {
    opacity: 1;
}

.xypg-product-list1 li a:hover .img-cont::after {
    width: 50%;
}

.xypg-product-list1 li a:hover .img-cont::before {
    width: 50%;
}




.xypg-product-list1 li a .img-cont .img-conta {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 1.4px;
    color: #ffffff;
}

.xypg-product-list1 li a .img-cont span {
    display: block;
    width: 6.45rem;
    line-height: 1.45rem;
    border-radius: 0.5rem;
    border: solid 1px #ffffff;
    color: #fff;
    text-align: center;
    margin: 1.4rem auto 0;
}

.xypg-product-list1 li a h3 {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 1px;
    color: #6e6e6e;
    margin-top: 1rem;
    text-align: center;
}

.xypg-product-list1 li:hover a h3 {
    color: #014099;
}


@media(max-width: 1440px) {
    .xypg-product-list1 li {
        width: 28.23%;
    }

    .xypg-product-list1 li:nth-child(3n) {
        margin-right: 0;
    }

    .xypg-product-list1 li:nth-child(4n) {
        margin-right: 7.5%;
    }
}


@media(max-width: 1366px) {
    .pro-info .pro-info-img {
        width: 36.12%;
        margin-right: 8.2rem;
    }
}

@media(max-width: 768px) {

    .pro-info {
        padding: 2rem 15px;
    }

    .pro-info .pro-info-img {
        width: 100%;
        margin-right: 0;
    }

    .pro-info .pro-info-text {
        width: 100%;
        margin-top: 4%;
    }

    .xypg-product-list1 {
        padding: 0 15px;
    }

    .xypg-product-list1 li {
        width: 45%;
        margin-right: 4% !important;
    }

    .xypg-product-list1 li:nth-child(2n) {
        margin-right: 0 !important;
    }

}

@media(max-width: 767px) {
    .pro-info .pro-info-text h5 {
        font-size: 20px;
    }

    .pro-info .pro-info-text p {
        line-height: 1.6;
    }

    .xypg-product-list1 li a h3 {
        line-height: 1.4;
        height:38px;
    }

    .pageController .t1 {
        display: none;
    }

    .page-mob-tool {
        display: none;
    }
}

/* 新闻 */

.news-title {
    text-align: center;
    padding: 1rem 0;
    /* margin-bottom: 2rem; */
}

.news-title h3 {
    font-size: 4.2rem;
    line-height: 20px;
    letter-spacing: 0.42rem;
    color: rgba(0, 0, 0, 0.07);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.news-title h4 {
    font-size: 1.8rem;
    font-weight: normal;
    color: #5d5d5d;
    position: relative;
    z-index: 2;
    line-height: 0.1rem;
}

.xypg-left-nav1 {
    display: flex;
    justify-content: center;
    align-items: center;
   margin: 2.15rem 0;
  /* margin: 0 auto; */
}

.xypg-left-nav1 li a {
    display: block;
    width: 9.3rem;
    height: 40px;
    background: url(../images/line9.png) no-repeat left center;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 2px;
    color: #9d9d9d;
    text-align: center;
    transition: all ease .3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xypg-left-nav1 li a:hover {
    border-bottom: 2px solid #014099;
    color: #014099;
}



.xypg-left-nav2 {
    display: flex;
    justify-content: center;
    align-items: center;
   margin: 2.15rem 0;
  /* margin: 0 auto; */
}

.xypg-left-nav2 li a {
    display: block;
    width: 9.3rem;
    height: 40px;
    background: url(../images/line9.png) no-repeat left center;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 2px;
    color: #9d9d9d;
    text-align: center;
    transition: all ease .3s;
}

.xypg-left-nav2 li a:hover {
    border-bottom: 2px solid #014099;
    color: #014099;
}

.pic_list{
	max-width: 1340px;
	width: 100%;
	margin: 0 auto;
}

.pic_list li {
    width: 33.33%;
	float: left;
    padding-bottom: 3.3rem;
	padding: 2%;
}

.pic_list li img{
    width: 100%;
}

.pic_list li p{
    text-align: center;
	font-size: 16px;
	margin-top: 10px;
}

.xypg-news-list1 {
    display: flex;
    flex-wrap: wrap;
}

.xypg-news-list1 li {
    width: 30%;
    position: relative;
    padding-bottom: 3.3rem;
    margin-right: 4.88%;
}

.xypg-news-list1 li:nth-child(3n) {
    margin-right: 0;
}

.xypg-news-list1 li a {
    display: block;

}

.xypg-news-list1 li a div.img {
    position: relative;
    overflow: hidden;
}

.xypg-news-list1 li a div.img img {
    width: 100%;
    transition: all ease .6s;
}

.xypg-news-list1 li:hover a div.img img {
    transform: scale(1.1);
}

.xypg-news-list1 li a .time {
    display: inline-block;
    line-height: 38px;
    background-color: #454545;
    font-size: 16px;
    font-weight: normal;
    color: #f6f4f4;
    text-align: center;
    padding: 0 18px;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: all ease .3s;
}

.xypg-news-list1 li a .cont h3 {
    font-size: 1rem;
    color: #000000;
    position: relative;
    padding-bottom: 1.8rem;
    line-height: 1;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
width: 100%;
}

.xypg-news-list1 li a .cont h3::after {
    content: "";
    width: 3.95rem;
    height: 3px;
    background-color: #000000;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all ease .3s;
}

.xypg-news-list1 li a .cont p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #454545;
}

.xypg-news-list1 li a .more {
    width: 3.25rem;
    height: 3.25rem;
    background: url(../images/nmore1.png) no-repeat center center;
    background-size: 100% 100%;
    margin: 3rem auto 0;
}

.xypg-news-list1 li:nth-child(3n+2):after {
    content: "";
    height: 100%;
    width: 1px;
    background-color: rgba(159, 159, 159, .2);
    position: absolute;
    right: -8%;
    top: 0;
    bottom: 0;
}

.xypg-news-list1 li:nth-child(3n+2)::before {
    content: "";
    height: 100%;
    width: 1px;
    background-color: rgba(159, 159, 159, .2);
    position: absolute;
    left: -8%;
    top: 0;
    bottom: 0;
}

.xypg-news-list1 li:nth-last-child(-n+3) {
    padding-bottom: 0;
}

.xypg-news-list1 li:hover .img .time {
    background-color: rgba(1, 64, 153, 1);
}

.xypg-news-list1 li:hover a .cont h3::after {
    background-color: #014099;
}

.xypg-news-list1 li:hover a .more {
    background: url(../images/nmore2.png) no-repeat center center;
    background-size: 100% 100%;
}
















/* 新闻详情 */

.news_detail_wap {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.news_detail_wap .news_dl_left {
    width: 70%;
}

.news_detail_wap .news_dl_right {
    width: 30%;
    border-left: 1px solid #e9e9e9;
}

.news_dl_right .ndl_tit {
    position: relative;
    padding: 0 0 3.125%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news_dl_right .ndl_tit h3 {
    font-size: 24px;
    font-weight: normal;
    color: #000;
    padding-left: 3vw;
}

.news_dl_right .ndl_tit a {
    display: block;
    font-size: 12px;
    color: rgba(40, 40, 40, .5);
}

.news_tj_list {
    position: relative;
}

.news_tj_list li {
    padding: 2vw;
    position: relative;
    border-top: 1px solid #e9e9e9;
}

.news_tj_list li a {
    display: block;
}

.news_tj_list li .nei_news_time {
    position: relative;
    line-height: 1;
}

.news_tj_list li .nei_news_time span {
    color: #a3a3a3;
    font-size: 15px;
    display: inline-block;
}

.news_tj_list li .nei_news_time span b {
    color: #282828;
    font-size: 30px;
    padding-right: 10px;
    font-weight: normal;
}

.news_tj_list li .nei_news_wen {
    position: relative;
    padding-top: 3.125%;
}

.news_tj_list li .nei_news_wen h3 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #282828;
    font-family: "黑体";
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.news_tj_list li .nei_news_wen span {
    display: block;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.9;
}

.news_tj_list li .nei_news_wen em {
    display: block;
    color: #000000;
    font-size: 12px;
    font-style: inherit;
    margin-top: 15px;
}

.news_tj_list li:hover .nei_news_time span,
.news_tj_list li:hover .nei_news_time span b {
    color: #014fa2;
}

.news_tj_list li:hover .nei_news_wen h3,
.news_tj_list li:hover .nei_news_wen em {
    color: #014fa2;
}

/* xypg-detail-title22 */

.xypg-news-detail22 {
    padding: 0 3.15vw;
}

.xypg-detail-title22 {
    text-align: center;
    font-size: 24px;
    font-weight: normal;
}

.xypg-detail-info-bar2 {
    text-align: center;
    border: none;
    display: flex;
    justify-content: center;
}

.xypg-detail-info-bar2>div {
   
    float: none !important;
    /* display: inline-block;
    margin: 0 !important;
    padding: 0 !important;*/
}

@media (max-width:992px) {
    .xypg-left-nav1 {
        flex-wrap: wrap;
    }
    
    .news_detail_wap .news_dl_left {
        width: 100%;
    }
}

@media (max-width:768px) {
    .xypg-left-nav1 li {
        width: 33%;
        margin-bottom: 2%;
    }
    .xypg-news-list1 {
        justify-content: space-between;
    }

    .xypg-news-list1 li {
        width: 49%;
        margin: 0 !important;
    }

    .xypg-news-list1 li:nth-child(3n+2)::before {
        display: none;
    }

    .xypg-news-list1 li:nth-child(3n+2)::after {
        display: none;
    }

    .xypg-news-list1 li a .cont h3 {
        font-size: 1rem;
    }

}

@media (max-width:767px) {
    .xypg-detail-info-bar2>div {
        padding-left: 25px !important;
    }

    .xypg-news-list1 li {
        width: 100%;
    }
    .xypg-left-nav1 li{
        margin-bottom: 4%;
    }

    .xypg-left-nav1 li a {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        letter-spacing: 0;
    }

    .xypg-news-list1 li a .cont h3 {
        font-size: 16px;
        line-height: 1.6;
        padding-bottom: 1rem;
    }

    .xypg-news-list1 li a .cont p {
        font-size: 14px;
    }

    .xypg-news-list1 li a .more {
        margin: 1.5rem auto 0;
    }
}



.np1 {}

.np1a {
    width: 50%;
}

.np1a h3 {
    font-size: 2.4rem;
    font-weight: normal;
    line-height: 1.6rem;
    color: #000000;

}

.np1a h4 {
    font-size: 1.5rem;
    color: #014099;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.np1a p {
    font-size: 16px;
    letter-spacing: 1.6px;
    color: #000000;
    line-height: 1.68;
    margin-bottom: 1.5rem;
}

.np1-img {
    width: 45.17%;
}

.np1-img img {
    max-width: 100%;
}

.np2a {
    margin-top: 4.1rem;
    flex-wrap: nowrap;
}

.np2a li {
    text-align: center;
}

.np2a li:nth-child(1) {
    width: 21.77%;
    padding-right: 5.1rem;
}

.np2a li:nth-child(2) {
    width: 28%;
    padding: 0 4.6rem 0 4.9rem;
}

.np2a li:nth-child(3) {
    width: 28%;
    padding: 0 5rem 0 4.5rem;
}

.np2a li:nth-child(4) {
    width: 21.7%;
    padding-left: 4rem;
}

.np2a li h3 {
    font-size: 3rem;
    font-weight: normal;
    ;
    letter-spacing: 0.15rem;
    color: #a21f2d;
}

.np2a li .cont {
    font-size: 14px;
    letter-spacing: 0.7px;
    color: rgba(0, 0, 0, .8);
}

.np2a li+li {
    background: url(../images/line10.jpg) no-repeat left top;
}


@media(max-width: 768px) {
    .np1-img {
        width: 100%;
        order: 1;
    }

    .np1a {
        width: 100%;
        order: 2;
        margin-top: 15px;
    }

    .np2a {
        flex-wrap: wrap;
    }

    .np2a li {
        width: 49% !important;
        padding: 1rem 15px !important;
    }

    .np2a li:nth-child(3) {
        background: initial;
    }
}

@media(max-width: 767px) {
    .np1a h4 {
        font-size: 18px;
    }

    .np1a p {
        font-size: 14px;
        line-height: 1.5;
    }
}

.np3 {
    position: relative;
    margin-top: 2.63rem;
}

.np3 .np3img img {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    z-index: -1;
}
.np3 .np3img img.active {
    position: static;
    opacity: 1;
}



.np3a {
    width: 60%;
    position: absolute;
    top: 8.6rem;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    font-size: 14px;
    line-height: 2.28;
    letter-spacing: 0.7px;
    color: #000000;
}




.np3a .tab-cont {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    right: 0;
}

.np3a .tab-cont {
    width: 100%;
}

.np3a .tab-cont {
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
}

.np3a .tab-cont.active {
    position: static;
    opacity: 1;
    visibility: visible;
}

.np3b {
    width: 73.29%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    transform: translateY(-50%);
    position: relative;
    z-index: 9;
}

.np3b li {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 112px;
    background: #fff url(../images/line11.png) no-repeat left center;
    box-shadow: 0px 21px 21px 0px rgba(236, 247, 253, 0.75);
    border-bottom: 4px solid transparent;
    transition: all ease .3s;
}

.np3b li div.img {
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.np3b li h3 {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.9px;
    color: #4f5253;
    margin-top: 10px;
}

.np3b li div.img img.img2 {
    display: none;
}

.np3b li.active div.img img.img2 {
    display: block;
}

.np3b li.active div.img img.img1 {
    display: none;
}


.np3b li.active {
    border-bottom: 4px solid #014099;
}

.np3b li.active h3 {
    color: #014099;
}

@media(max-width: 1024px) {
    .np3a {
        width: 96%;
        top: 5.6rem;
    }
}

@media(max-width: 768px) {
    .np3a {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        width: 96%;
        top: 3.6rem;
    }

    .np3b {
        width: 100%;
        transform: initial;
    }
}

@media(max-width: 767px) {
    .np3a {
        position: relative;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 6;
        overflow: hidden;
    }

    .np3b {
        margin: 50px auto 0;
    }

    .np3b li div.img img {
        width: 60%;
    }

    .np3b li {
        height: 80px;
    }

    .np3b li h3 {
        font-size: 14px;
    }

    .np3b li div.img {
        line-height: 28px;
        height: 28px;
    }
}




.np4 {
    margin: 4rem auto 0;
}

.np4 li {
    width: 23.53%;
    background-color: rgba(255, 255, 255, .8);
    position: relative;
}





.np4 li:hover::before {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #014099;
    position: absolute;
    right: 50%;
    top: 0;
    animation: mapLine linear 0.6s;
    animation-fill-mode: forwards;
}


.np4 li:hover::after {
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    background: #014099;
    position: absolute;
    left: 50%;
    top: 0;
    animation: mapLine linear 0.6s;
    animation-fill-mode: forwards;
}

.np4 li:hover i::before {
    content: '';
    display: block;
    width: 2px;
    height: 0;
    background: #014099;
    position: absolute;
    left: 0;
    top: 0px;
    animation: mapLine1 linear 0.6s;
    animation-fill-mode: forwards;
    animation-delay: 0.6s;
}

.np4 li:hover i::after {
    content: '';
    display: block;
    width: 2px;
    height: 0;
    background: #014099;
    position: absolute;
    right: 0;
    top: 0px;
    animation: mapLine1 linear 0.6s;
    animation-fill-mode: forwards;
    animation-delay: 0.6s;
}

.np4 li:hover a::before {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #014099;
    position: absolute;
    left: 0;
    bottom: 0;
    animation: mapLine linear 0.6s;
    animation-fill-mode: forwards;
    animation-delay: 1.2s;
}

.np4 li:hover a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #014099;
    position: absolute;
    right: 0;
    bottom: 0;
    animation: mapLine linear 0.6s;
    animation-fill-mode: forwards;
    animation-delay: 1.2s;
}



@keyframes mapLine {
    0% {
        width: 0px;
    }

    100% {
        width: 50%;
    }
}

@keyframes mapLine1 {
    0% {
        height: 0px;
    }

    100% {
        height: 100%;
    }
}



.np4 li a {
    display: block;
    padding: 2.9rem 2rem 3.5rem 2rem;
    text-align: center;
}

.np4 li a div.img {
    height: 68px;
    line-height: 68px;
}

.np4 li a div.img img {
    max-width: 100%;
}

.np4 li a .cont {
    margin-top: 2.3rem;
}

.np4 li a .cont h3 {
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 2.4px;
    color: #666666;
    margin-bottom: 2rem;
}

.np4 li a .cont p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.7;
    color: #000000;
    opacity: 0.5;
}


.download_list1{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 30%;
    margin: 0 auto;
}

.download_list1 li{
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
}
.download_list1 li p{
    font-size: 16px;
}





@media(max-width: 1024px) {
    .np4 li a {
        display: block;
        padding: 2.9rem 0.5rem 3rem;
        text-align: center;
    }
}

@media(max-width: 768px) {
    .np4 li {
        width: 49%;
        margin-bottom: 4%;
    }
    .download_list1{
        max-width:100%;
    }
    .download_list1 li{
        width:100%;
        flex-wrap:wrap;
        justify-content: flex-end;
    }
    .download_list1 li p{
        width:100%;
    }
}

@media(max-width: 767px) {
    .np4 li a div.img {
        height: 50px;
        line-height: 50px;
    }

    .np4 li a div.img img {
        max-width: 28%;
    }

    .np4 li a .cont {
        margin-top: 1.8rem;
    }

    .np4 li a .cont h3 {
        font-size: 18px;
        margin-bottom: 1.4rem;
    }
}

@media(max-width:425px){
    .download_list1 li img{
        max-width:90px;
    }
}

/* 专题页样式 */
/* 在线商城 */
.ncontain {
    max-width: 1230px;
    padding: 30px;
    background: #fff;
    margin: 2.15rem auto 0;
}
.online {
    justify-content: center;
}
.online a {
    width: 29.1667%;
    margin: 0 10px;
}
.online a div.img img{
    display: block;
    width: 100%;
}
.online a span{
    line-height: 4.2rem;
    background: #f5f5f5;
    text-align: center;
    font-size: 16px;
    transition: .3s;
    display: block;
    color: #666;
}
.online a:hover span {
    background: #0073c1;
    color: #ffffff;
}
@media(max-width: 768px) {
    .online a {
        width: 46.1667%;
    }
}
@media(max-width: 767px){
    .ncontain{
        padding: 30px 15px;
    }
    .online {
        justify-content: space-between;
    }
    .online a {
        width: 48.1667%;
        margin: 0;
    }
    .online a span{
        font-size: 14px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
}

/* 科研实力部分样式与在线商城共用 */

.ketitle{
    font-size: 16px;
    overflow: hidden;
    border: #ccc 1px dotted;
    background: #f7f7f7;
    text-align: center;
    line-height: 50px;
    color: #000;
}
.keyan{
    justify-content: space-between;
    margin-top: 1.5rem;
}
.keyan a{
    margin: 0;
    width: 24%;
}
@media(max-width: 767px){
  
    .keyan a {
        width: 48.1667%;
        margin: 0;
        margin-bottom: 4%;
    }
    .keyan a span{
        font-size: 14px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
}


/* 地图 */
@media(max-width: 1024px) {
    .xypg-left-nav1 li a {
        width: 100%;
        padding: 0 1.5vw;
    }
    #allmap {
        width: 70%;
    }
    .maplist{
        width: 30%;
    }
    .maplist li:last-child {
        border: none;
    }
}
@media(max-width: 767px) {
    .province {
        display: inline-block;
        width: 31%;
        padding: 0;
        margin: 6px 0;
    }
    #search_form select{
        width: 67%;
    }
    .button_s{
        float: right;
    }
    .maplist{
        float: none;
        width: 100%;
        overflow: hidden;
        border: 1px solid #ccc;
        height: auto;
        margin-top: 17%;
        max-height: 400px;
    }
    .maplist ul{
        height: auto;
    }
    #allmap{
        width: 100%;
        float: none;
        margin-top: 6%;
        height: 300px;
    }
    .xypg-right-content img {
        max-width: 100%;
        height: auto !important;
    }
}




    
/*修改*/
.p2-title h3{
    text-transform: uppercase;
}
   
.slist1{
    
}

.slist1 li{
    width: 23.62%;
    box-shadow: 0px 0px 19px 0px rgba(123, 123, 123, 0.45);
}

.slist1 li img{
    width: 100%;
} 

.slist1 li .wz{
    background: #b3b3b3;
    padding: 2.34375vw 5px;
    text-align: center;
}

.slist1 li .wz .wz1{
    color: #ffffff;
    font-size: 22px;
}

.slist1 li .wz .wz2{
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
}

.slist1 li:hover .wz{
    background: #a11e2c;
}


@media(max-width:767px){
    .slist1{
        flex-wrap:wrap;
    }
    .slist1 li{
        width:48%;
        margin-bottom:4%;
    }
    .slist1 li .wz .wz1{
        font-size:14px;
    }
    .slist1 li .wz .wz2{
        font-size:12px;
        
    }
}


.share {
  margin-top: 20px;
  justify-content: flex-start;
}

.share .social-share .social-share-icon {
  border: none;
  width: 35px;
  height: 35px;
  margin: 0;
  margin-right: 18px;
}

.share .social-share .icon-qq {
  background: url(../images/pp1.png) no-repeat center center;
}

.share .social-share .icon-qq:before {
  content: '';
}

.share .social-share .icon-wechat {
  background: url(../images/pp2.png) no-repeat center center;
}

.share .social-share .icon-wechat:before {
  content: '';
}

.share .social-share .icon-weibo {
  background: url(../images/pp3.png) no-repeat center center;
  margin-right: 0;
}

.share .social-share .icon-weibo:before {
  content: '';
}

.ncontain table{
	border-left:1px solid #ddd;
	border-top:1px solid #ddd;
    width: 100%;
	margin-bottom:15px;
    margin-top: 10px;
	word-break: break-all;
	border-spacing: 0px;border-collapse: separate;
	}

.ncontain tr td{padding:12px;}
.ncontain tr:nth-child(1) {background: #a11e2c;}
.ncontain tr:nth-child(1) td{color: #FFFFFF; font-weight: bold; line-height: 160%;}
.ncontain tr:nth-child(2n){background: #eee;}

.ncontain  td{
	padding:5px;
	text-align: left;
	color:#444;
	font-size:15px;
	line-height:180%;
	border-right:1px solid #ddd;
	border-bottom:1px solid #ddd;
	}
